home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / idlelib / configHandler.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  26KB  |  801 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """Provides access to stored IDLE configuration information.
  5.  
  6. Refer to the comments at the beginning of config-main.def for a description of
  7. the available configuration files and the design implemented to update user
  8. configuration information.  In particular, user configuration choices which
  9. duplicate the defaults will be removed from the user's configuration files,
  10. and if a file becomes empty, it will be deleted.
  11.  
  12. The contents of the user files may be altered using the Options/Configure IDLE
  13. menu to access the configuration GUI (configDialog.py), or manually.
  14.  
  15. Throughout this module there is an emphasis on returning useable defaults
  16. when a problem occurs in returning a requested configuration value back to
  17. idle. This is to allow IDLE to continue to function in spite of errors in
  18. the retrieval of config information. When a default is returned instead of
  19. a requested config value, a message is printed to stderr to aid in
  20. configuration problem notification and resolution.
  21.  
  22. """
  23. import os
  24. import sys
  25. import string
  26. from ConfigParser import ConfigParser, NoOptionError, NoSectionError
  27.  
  28. class InvalidConfigType(Exception):
  29.     pass
  30.  
  31.  
  32. class InvalidConfigSet(Exception):
  33.     pass
  34.  
  35.  
  36. class InvalidFgBg(Exception):
  37.     pass
  38.  
  39.  
  40. class InvalidTheme(Exception):
  41.     pass
  42.  
  43.  
  44. class IdleConfParser(ConfigParser):
  45.     '''
  46.     A ConfigParser specialised for idle configuration file handling
  47.     '''
  48.     
  49.     def __init__(self, cfgFile, cfgDefaults = None):
  50.         '''
  51.         cfgFile - string, fully specified configuration file name
  52.         '''
  53.         self.file = cfgFile
  54.         ConfigParser.__init__(self, defaults = cfgDefaults)
  55.  
  56.     
  57.     def Get(self, section, option, type = None, default = None):
  58.         '''
  59.         Get an option value for given section/option or return default.
  60.         If type is specified, return as type.
  61.         '''
  62.         if type == 'bool':
  63.             getVal = self.getboolean
  64.         elif type == 'int':
  65.             getVal = self.getint
  66.         else:
  67.             getVal = self.get
  68.         if self.has_option(section, option):
  69.             return getVal(section, option)
  70.         else:
  71.             return default
  72.  
  73.     
  74.     def GetOptionList(self, section):
  75.         '''
  76.         Get an option list for given section
  77.         '''
  78.         if self.has_section(section):
  79.             return self.options(section)
  80.         else:
  81.             return []
  82.  
  83.     
  84.     def Load(self):
  85.         '''
  86.         Load the configuration file from disk
  87.         '''
  88.         self.read(self.file)
  89.  
  90.  
  91.  
  92. class IdleUserConfParser(IdleConfParser):
  93.     '''
  94.     IdleConfigParser specialised for user configuration handling.
  95.     '''
  96.     
  97.     def AddSection(self, section):
  98.         """
  99.         if section doesn't exist, add it
  100.         """
  101.         if not self.has_section(section):
  102.             self.add_section(section)
  103.         
  104.  
  105.     
  106.     def RemoveEmptySections(self):
  107.         '''
  108.         remove any sections that have no options
  109.         '''
  110.         for section in self.sections():
  111.             if not self.GetOptionList(section):
  112.                 self.remove_section(section)
  113.                 continue
  114.         
  115.  
  116.     
  117.     def IsEmpty(self):
  118.         '''
  119.         Remove empty sections and then return 1 if parser has no sections
  120.         left, else return 0.
  121.         '''
  122.         self.RemoveEmptySections()
  123.         if self.sections():
  124.             return 0
  125.         else:
  126.             return 1
  127.  
  128.     
  129.     def RemoveOption(self, section, option):
  130.         '''
  131.         If section/option exists, remove it.
  132.         Returns 1 if option was removed, 0 otherwise.
  133.         '''
  134.         if self.has_section(section):
  135.             return self.remove_option(section, option)
  136.         
  137.  
  138.     
  139.     def SetOption(self, section, option, value):
  140.         '''
  141.         Sets option to value, adding section if required.
  142.         Returns 1 if option was added or changed, otherwise 0.
  143.         '''
  144.         if self.has_option(section, option):
  145.             if self.get(section, option) == value:
  146.                 return 0
  147.             else:
  148.                 self.set(section, option, value)
  149.                 return 1
  150.         elif not self.has_section(section):
  151.             self.add_section(section)
  152.         
  153.         self.set(section, option, value)
  154.         return 1
  155.  
  156.     
  157.     def RemoveFile(self):
  158.         '''
  159.         Removes the user config file from disk if it exists.
  160.         '''
  161.         if os.path.exists(self.file):
  162.             os.remove(self.file)
  163.         
  164.  
  165.     
  166.     def Save(self):
  167.         """Update user configuration file.
  168.  
  169.         Remove empty sections. If resulting config isn't empty, write the file
  170.         to disk. If config is empty, remove the file from disk if it exists.
  171.  
  172.         """
  173.         if not self.IsEmpty():
  174.             cfgFile = open(self.file, 'w')
  175.             self.write(cfgFile)
  176.         else:
  177.             self.RemoveFile()
  178.  
  179.  
  180.  
  181. class IdleConf:
  182.     '''
  183.     holds config parsers for all idle config files:
  184.     default config files
  185.         (idle install dir)/config-main.def
  186.         (idle install dir)/config-extensions.def
  187.         (idle install dir)/config-highlight.def
  188.         (idle install dir)/config-keys.def
  189.     user config  files
  190.         (user home dir)/.idlerc/config-main.cfg
  191.         (user home dir)/.idlerc/config-extensions.cfg
  192.         (user home dir)/.idlerc/config-highlight.cfg
  193.         (user home dir)/.idlerc/config-keys.cfg
  194.     '''
  195.     
  196.     def __init__(self):
  197.         self.defaultCfg = { }
  198.         self.userCfg = { }
  199.         self.cfg = { }
  200.         self.CreateConfigHandlers()
  201.         self.LoadCfgFiles()
  202.  
  203.     
  204.     def CreateConfigHandlers(self):
  205.         '''
  206.         set up a dictionary of config parsers for default and user
  207.         configurations respectively
  208.         '''
  209.         if __name__ != '__main__':
  210.             idleDir = os.path.dirname(__file__)
  211.         else:
  212.             idleDir = os.path.abspath(sys.path[0])
  213.         userDir = self.GetUserCfgDir()
  214.         configTypes = ('main', 'extensions', 'highlight', 'keys')
  215.         defCfgFiles = { }
  216.         usrCfgFiles = { }
  217.         for cfgType in configTypes:
  218.             defCfgFiles[cfgType] = os.path.join(idleDir, 'config-' + cfgType + '.def')
  219.             usrCfgFiles[cfgType] = os.path.join(userDir, 'config-' + cfgType + '.cfg')
  220.         
  221.         for cfgType in configTypes:
  222.             self.defaultCfg[cfgType] = IdleConfParser(defCfgFiles[cfgType])
  223.             self.userCfg[cfgType] = IdleUserConfParser(usrCfgFiles[cfgType])
  224.         
  225.  
  226.     
  227.     def GetUserCfgDir(self):
  228.         '''
  229.         Creates (if required) and returns a filesystem directory for storing
  230.         user config files.
  231.  
  232.         '''
  233.         cfgDir = '.idlerc'
  234.         userDir = os.path.expanduser('~')
  235.         if userDir != '~':
  236.             if not os.path.exists(userDir):
  237.                 warn = '\n Warning: os.path.expanduser("~") points to\n ' + userDir + ',\n but the path does not exist.\n'
  238.                 sys.stderr.write(warn)
  239.                 userDir = '~'
  240.             
  241.         
  242.         if userDir == '~':
  243.             userDir = os.getcwd()
  244.         
  245.         userDir = os.path.join(userDir, cfgDir)
  246.         if not os.path.exists(userDir):
  247.             
  248.             try:
  249.                 os.mkdir(userDir)
  250.             except (OSError, IOError):
  251.                 warn = '\n Warning: unable to create user config directory\n' + userDir + '\n Check path and permissions.\n Exiting!\n\n'
  252.                 sys.stderr.write(warn)
  253.                 raise SystemExit
  254.             except:
  255.                 None<EXCEPTION MATCH>(OSError, IOError)
  256.             
  257.  
  258.         None<EXCEPTION MATCH>(OSError, IOError)
  259.         return userDir
  260.  
  261.     
  262.     def GetOption(self, configType, section, option, default = None, type = None, warn_on_default = True):
  263.         """
  264.         Get an option value for given config type and given general
  265.         configuration section/option or return a default. If type is specified,
  266.         return as type. Firstly the user configuration is checked, with a
  267.         fallback to the default configuration, and a final 'catch all'
  268.         fallback to a useable passed-in default if the option isn't present in
  269.         either the user or the default configuration.
  270.         configType must be one of ('main','extensions','highlight','keys')
  271.         If a default is returned, and warn_on_default is True, a warning is
  272.         printed to stderr.
  273.  
  274.         """
  275.         if self.userCfg[configType].has_option(section, option):
  276.             return self.userCfg[configType].Get(section, option, type = type)
  277.         elif self.defaultCfg[configType].has_option(section, option):
  278.             return self.defaultCfg[configType].Get(section, option, type = type)
  279.         elif warn_on_default:
  280.             warning = '\n Warning: configHandler.py - IdleConf.GetOption -\n problem retrieving configration option %r\n from section %r.\n returning default value: %r\n' % (option, section, default)
  281.             sys.stderr.write(warning)
  282.         
  283.         return default
  284.  
  285.     
  286.     def SetOption(self, configType, section, option, value):
  287.         """In user's config file, set section's option to value.
  288.  
  289.         """
  290.         self.userCfg[configType].SetOption(section, option, value)
  291.  
  292.     
  293.     def GetSectionList(self, configSet, configType):
  294.         """
  295.         Get a list of sections from either the user or default config for
  296.         the given config type.
  297.         configSet must be either 'user' or 'default'
  298.         configType must be one of ('main','extensions','highlight','keys')
  299.         """
  300.         if configType not in ('main', 'extensions', 'highlight', 'keys'):
  301.             raise InvalidConfigType, 'Invalid configType specified'
  302.         
  303.         if configSet == 'user':
  304.             cfgParser = self.userCfg[configType]
  305.         elif configSet == 'default':
  306.             cfgParser = self.defaultCfg[configType]
  307.         else:
  308.             raise InvalidConfigSet, 'Invalid configSet specified'
  309.         return cfgParser.sections()
  310.  
  311.     
  312.     def GetHighlight(self, theme, element, fgBg = None):
  313.         """
  314.         return individual highlighting theme elements.
  315.         fgBg - string ('fg'or'bg') or None, if None return a dictionary
  316.         containing fg and bg colours (appropriate for passing to Tkinter in,
  317.         e.g., a tag_config call), otherwise fg or bg colour only as specified.
  318.         """
  319.         if self.defaultCfg['highlight'].has_section(theme):
  320.             themeDict = self.GetThemeDict('default', theme)
  321.         else:
  322.             themeDict = self.GetThemeDict('user', theme)
  323.         fore = themeDict[element + '-foreground']
  324.         if element == 'cursor':
  325.             back = themeDict['normal-background']
  326.         else:
  327.             back = themeDict[element + '-background']
  328.         highlight = {
  329.             'foreground': fore,
  330.             'background': back }
  331.         if not fgBg:
  332.             return highlight
  333.         elif fgBg == 'fg':
  334.             return highlight['foreground']
  335.         
  336.         if fgBg == 'bg':
  337.             return highlight['background']
  338.         else:
  339.             raise InvalidFgBg, 'Invalid fgBg specified'
  340.  
  341.     
  342.     def GetThemeDict(self, type, themeName):
  343.         """
  344.         type - string, 'default' or 'user' theme type
  345.         themeName - string, theme name
  346.         Returns a dictionary which holds {option:value} for each element
  347.         in the specified theme. Values are loaded over a set of ultimate last
  348.         fallback defaults to guarantee that all theme elements are present in
  349.         a newly created theme.
  350.         """
  351.         if type == 'user':
  352.             cfgParser = self.userCfg['highlight']
  353.         elif type == 'default':
  354.             cfgParser = self.defaultCfg['highlight']
  355.         else:
  356.             raise InvalidTheme, 'Invalid theme type specified'
  357.         theme = {
  358.             'normal-foreground': '#000000',
  359.             'normal-background': '#ffffff',
  360.             'keyword-foreground': '#000000',
  361.             'keyword-background': '#ffffff',
  362.             'builtin-foreground': '#000000',
  363.             'builtin-background': '#ffffff',
  364.             'comment-foreground': '#000000',
  365.             'comment-background': '#ffffff',
  366.             'string-foreground': '#000000',
  367.             'string-background': '#ffffff',
  368.             'definition-foreground': '#000000',
  369.             'definition-background': '#ffffff',
  370.             'hilite-foreground': '#000000',
  371.             'hilite-background': 'gray',
  372.             'break-foreground': '#ffffff',
  373.             'break-background': '#000000',
  374.             'hit-foreground': '#ffffff',
  375.             'hit-background': '#000000',
  376.             'error-foreground': '#ffffff',
  377.             'error-background': '#000000',
  378.             'cursor-foreground': '#000000',
  379.             'stdout-foreground': '#000000',
  380.             'stdout-background': '#ffffff',
  381.             'stderr-foreground': '#000000',
  382.             'stderr-background': '#ffffff',
  383.             'console-foreground': '#000000',
  384.             'console-background': '#ffffff' }
  385.         for element in theme.keys():
  386.             if not cfgParser.has_option(themeName, element):
  387.                 warning = '\n Warning: configHandler.py - IdleConf.GetThemeDict -\n problem retrieving theme element %r\n from theme %r.\n returning default value: %r\n' % (element, themeName, theme[element])
  388.                 sys.stderr.write(warning)
  389.             
  390.             colour = cfgParser.Get(themeName, element, default = theme[element])
  391.             theme[element] = colour
  392.         
  393.         return theme
  394.  
  395.     
  396.     def CurrentTheme(self):
  397.         '''
  398.         Returns the name of the currently active theme
  399.         '''
  400.         return self.GetOption('main', 'Theme', 'name', default = '')
  401.  
  402.     
  403.     def CurrentKeys(self):
  404.         '''
  405.         Returns the name of the currently active key set
  406.         '''
  407.         return self.GetOption('main', 'Keys', 'name', default = '')
  408.  
  409.     
  410.     def GetExtensions(self, active_only = True, editor_only = False, shell_only = False):
  411.         '''
  412.         Gets a list of all idle extensions declared in the config files.
  413.         active_only - boolean, if true only return active (enabled) extensions
  414.         '''
  415.         extns = self.RemoveKeyBindNames(self.GetSectionList('default', 'extensions'))
  416.         userExtns = self.RemoveKeyBindNames(self.GetSectionList('user', 'extensions'))
  417.         for extn in userExtns:
  418.             if extn not in extns:
  419.                 extns.append(extn)
  420.                 continue
  421.         
  422.         if active_only:
  423.             activeExtns = []
  424.             for extn in extns:
  425.                 if self.GetOption('extensions', extn, 'enable', default = True, type = 'bool'):
  426.                     if editor_only or shell_only:
  427.                         if editor_only:
  428.                             option = 'enable_editor'
  429.                         else:
  430.                             option = 'enable_shell'
  431.                         if self.GetOption('extensions', extn, option, default = True, type = 'bool', warn_on_default = False):
  432.                             activeExtns.append(extn)
  433.                         
  434.                     else:
  435.                         activeExtns.append(extn)
  436.                 shell_only
  437.             
  438.             return activeExtns
  439.         else:
  440.             return extns
  441.  
  442.     
  443.     def RemoveKeyBindNames(self, extnNameList):
  444.         names = extnNameList
  445.         kbNameIndicies = []
  446.         for name in names:
  447.             if name.endswith('_bindings') or name.endswith('_cfgBindings'):
  448.                 kbNameIndicies.append(names.index(name))
  449.                 continue
  450.         
  451.         kbNameIndicies.sort()
  452.         kbNameIndicies.reverse()
  453.         for index in kbNameIndicies:
  454.             del names[index]
  455.         
  456.         return names
  457.  
  458.     
  459.     def GetExtnNameForEvent(self, virtualEvent):
  460.         """
  461.         Returns the name of the extension that virtualEvent is bound in, or
  462.         None if not bound in any extension.
  463.         virtualEvent - string, name of the virtual event to test for, without
  464.                        the enclosing '<< >>'
  465.         """
  466.         extName = None
  467.         vEvent = '<<' + virtualEvent + '>>'
  468.         for extn in self.GetExtensions(active_only = 0):
  469.             for event in self.GetExtensionKeys(extn).keys():
  470.                 if event == vEvent:
  471.                     extName = extn
  472.                     continue
  473.             
  474.         
  475.         return extName
  476.  
  477.     
  478.     def GetExtensionKeys(self, extensionName):
  479.         '''
  480.         returns a dictionary of the configurable keybindings for a particular
  481.         extension,as they exist in the dictionary returned by GetCurrentKeySet;
  482.         that is, where previously used bindings are disabled.
  483.         '''
  484.         keysName = extensionName + '_cfgBindings'
  485.         activeKeys = self.GetCurrentKeySet()
  486.         extKeys = { }
  487.         if self.defaultCfg['extensions'].has_section(keysName):
  488.             eventNames = self.defaultCfg['extensions'].GetOptionList(keysName)
  489.             for eventName in eventNames:
  490.                 event = '<<' + eventName + '>>'
  491.                 binding = activeKeys[event]
  492.                 extKeys[event] = binding
  493.             
  494.         
  495.         return extKeys
  496.  
  497.     
  498.     def __GetRawExtensionKeys(self, extensionName):
  499.         '''
  500.         returns a dictionary of the configurable keybindings for a particular
  501.         extension, as defined in the configuration files, or an empty dictionary
  502.         if no bindings are found
  503.         '''
  504.         keysName = extensionName + '_cfgBindings'
  505.         extKeys = { }
  506.         if self.defaultCfg['extensions'].has_section(keysName):
  507.             eventNames = self.defaultCfg['extensions'].GetOptionList(keysName)
  508.             for eventName in eventNames:
  509.                 binding = self.GetOption('extensions', keysName, eventName, default = '').split()
  510.                 event = '<<' + eventName + '>>'
  511.                 extKeys[event] = binding
  512.             
  513.         
  514.         return extKeys
  515.  
  516.     
  517.     def GetExtensionBindings(self, extensionName):
  518.         '''
  519.         Returns a dictionary of all the event bindings for a particular
  520.         extension. The configurable keybindings are returned as they exist in
  521.         the dictionary returned by GetCurrentKeySet; that is, where re-used
  522.         keybindings are disabled.
  523.         '''
  524.         bindsName = extensionName + '_bindings'
  525.         extBinds = self.GetExtensionKeys(extensionName)
  526.         if self.defaultCfg['extensions'].has_section(bindsName):
  527.             eventNames = self.defaultCfg['extensions'].GetOptionList(bindsName)
  528.             for eventName in eventNames:
  529.                 binding = self.GetOption('extensions', bindsName, eventName, default = '').split()
  530.                 event = '<<' + eventName + '>>'
  531.                 extBinds[event] = binding
  532.             
  533.         
  534.         return extBinds
  535.  
  536.     
  537.     def GetKeyBinding(self, keySetName, eventStr):
  538.         """
  539.         returns the keybinding for a specific event.
  540.         keySetName - string, name of key binding set
  541.         eventStr - string, the virtual event we want the binding for,
  542.                    represented as a string, eg. '<<event>>'
  543.         """
  544.         eventName = eventStr[2:-2]
  545.         binding = self.GetOption('keys', keySetName, eventName, default = '').split()
  546.         return binding
  547.  
  548.     
  549.     def GetCurrentKeySet(self):
  550.         return self.GetKeySet(self.CurrentKeys())
  551.  
  552.     
  553.     def GetKeySet(self, keySetName):
  554.         '''
  555.         Returns a dictionary of: all requested core keybindings, plus the
  556.         keybindings for all currently active extensions. If a binding defined
  557.         in an extension is already in use, that binding is disabled.
  558.         '''
  559.         keySet = self.GetCoreKeys(keySetName)
  560.         activeExtns = self.GetExtensions(active_only = 1)
  561.         for extn in activeExtns:
  562.             extKeys = self._IdleConf__GetRawExtensionKeys(extn)
  563.             if extKeys:
  564.                 for event in extKeys.keys():
  565.                     if extKeys[event] in keySet.values():
  566.                         extKeys[event] = ''
  567.                     
  568.                     keySet[event] = extKeys[event]
  569.                 
  570.         
  571.         return keySet
  572.  
  573.     
  574.     def IsCoreBinding(self, virtualEvent):
  575.         """
  576.         returns true if the virtual event is bound in the core idle keybindings.
  577.         virtualEvent - string, name of the virtual event to test for, without
  578.                        the enclosing '<< >>'
  579.         """
  580.         return '<<' + virtualEvent + '>>' in self.GetCoreKeys().keys()
  581.  
  582.     
  583.     def GetCoreKeys(self, keySetName = None):
  584.         """
  585.         returns the requested set of core keybindings, with fallbacks if
  586.         required.
  587.         Keybindings loaded from the config file(s) are loaded _over_ these
  588.         defaults, so if there is a problem getting any core binding there will
  589.         be an 'ultimate last resort fallback' to the CUA-ish bindings
  590.         defined here.
  591.         """
  592.         keyBindings = {
  593.             '<<copy>>': [
  594.                 '<Control-c>',
  595.                 '<Control-C>'],
  596.             '<<cut>>': [
  597.                 '<Control-x>',
  598.                 '<Control-X>'],
  599.             '<<paste>>': [
  600.                 '<Control-v>',
  601.                 '<Control-V>'],
  602.             '<<beginning-of-line>>': [
  603.                 '<Control-a>',
  604.                 '<Home>'],
  605.             '<<center-insert>>': [
  606.                 '<Control-l>'],
  607.             '<<close-all-windows>>': [
  608.                 '<Control-q>'],
  609.             '<<close-window>>': [
  610.                 '<Alt-F4>'],
  611.             '<<do-nothing>>': [
  612.                 '<Control-x>'],
  613.             '<<end-of-file>>': [
  614.                 '<Control-d>'],
  615.             '<<python-docs>>': [
  616.                 '<F1>'],
  617.             '<<python-context-help>>': [
  618.                 '<Shift-F1>'],
  619.             '<<history-next>>': [
  620.                 '<Alt-n>'],
  621.             '<<history-previous>>': [
  622.                 '<Alt-p>'],
  623.             '<<interrupt-execution>>': [
  624.                 '<Control-c>'],
  625.             '<<view-restart>>': [
  626.                 '<F6>'],
  627.             '<<restart-shell>>': [
  628.                 '<Control-F6>'],
  629.             '<<open-class-browser>>': [
  630.                 '<Alt-c>'],
  631.             '<<open-module>>': [
  632.                 '<Alt-m>'],
  633.             '<<open-new-window>>': [
  634.                 '<Control-n>'],
  635.             '<<open-window-from-file>>': [
  636.                 '<Control-o>'],
  637.             '<<plain-newline-and-indent>>': [
  638.                 '<Control-j>'],
  639.             '<<print-window>>': [
  640.                 '<Control-p>'],
  641.             '<<redo>>': [
  642.                 '<Control-y>'],
  643.             '<<remove-selection>>': [
  644.                 '<Escape>'],
  645.             '<<save-copy-of-window-as-file>>': [
  646.                 '<Alt-Shift-S>'],
  647.             '<<save-window-as-file>>': [
  648.                 '<Alt-s>'],
  649.             '<<save-window>>': [
  650.                 '<Control-s>'],
  651.             '<<select-all>>': [
  652.                 '<Alt-a>'],
  653.             '<<toggle-auto-coloring>>': [
  654.                 '<Control-slash>'],
  655.             '<<undo>>': [
  656.                 '<Control-z>'],
  657.             '<<find-again>>': [
  658.                 '<Control-g>',
  659.                 '<F3>'],
  660.             '<<find-in-files>>': [
  661.                 '<Alt-F3>'],
  662.             '<<find-selection>>': [
  663.                 '<Control-F3>'],
  664.             '<<find>>': [
  665.                 '<Control-f>'],
  666.             '<<replace>>': [
  667.                 '<Control-h>'],
  668.             '<<goto-line>>': [
  669.                 '<Alt-g>'],
  670.             '<<smart-backspace>>': [
  671.                 '<Key-BackSpace>'],
  672.             '<<newline-and-indent>>': [
  673.                 '<Key-Return> <Key-KP_Enter>'],
  674.             '<<smart-indent>>': [
  675.                 '<Key-Tab>'],
  676.             '<<indent-region>>': [
  677.                 '<Control-Key-bracketright>'],
  678.             '<<dedent-region>>': [
  679.                 '<Control-Key-bracketleft>'],
  680.             '<<comment-region>>': [
  681.                 '<Alt-Key-3>'],
  682.             '<<uncomment-region>>': [
  683.                 '<Alt-Key-4>'],
  684.             '<<tabify-region>>': [
  685.                 '<Alt-Key-5>'],
  686.             '<<untabify-region>>': [
  687.                 '<Alt-Key-6>'],
  688.             '<<toggle-tabs>>': [
  689.                 '<Alt-Key-t>'],
  690.             '<<change-indentwidth>>': [
  691.                 '<Alt-Key-u>'] }
  692.         if keySetName:
  693.             for event in keyBindings.keys():
  694.                 binding = self.GetKeyBinding(keySetName, event)
  695.                 if binding:
  696.                     keyBindings[event] = binding
  697.                 else:
  698.                     warning = '\n Warning: configHandler.py - IdleConf.GetCoreKeys -\n problem retrieving key binding for event %r\n from key set %r.\n returning default value: %r\n' % (event, keySetName, keyBindings[event])
  699.                     sys.stderr.write(warning)
  700.             
  701.         
  702.         return keyBindings
  703.  
  704.     
  705.     def GetExtraHelpSourceList(self, configSet):
  706.         """Fetch list of extra help sources from a given configSet.
  707.  
  708.         Valid configSets are 'user' or 'default'.  Return a list of tuples of
  709.         the form (menu_item , path_to_help_file , option), or return the empty
  710.         list.  'option' is the sequence number of the help resource.  'option'
  711.         values determine the position of the menu items on the Help menu,
  712.         therefore the returned list must be sorted by 'option'.
  713.  
  714.         """
  715.         helpSources = []
  716.         if configSet == 'user':
  717.             cfgParser = self.userCfg['main']
  718.         elif configSet == 'default':
  719.             cfgParser = self.defaultCfg['main']
  720.         else:
  721.             raise InvalidConfigSet, 'Invalid configSet specified'
  722.         options = cfgParser.GetOptionList('HelpFiles')
  723.         for option in options:
  724.             value = cfgParser.Get('HelpFiles', option, default = ';')
  725.             if value.find(';') == -1:
  726.                 menuItem = ''
  727.                 helpPath = ''
  728.             else:
  729.                 value = string.split(value, ';')
  730.                 menuItem = value[0].strip()
  731.                 helpPath = value[1].strip()
  732.             if menuItem and helpPath:
  733.                 helpSources.append((menuItem, helpPath, option))
  734.                 continue
  735.         
  736.         helpSources.sort(self._IdleConf__helpsort)
  737.         return helpSources
  738.  
  739.     
  740.     def __helpsort(self, h1, h2):
  741.         if int(h1[2]) < int(h2[2]):
  742.             return -1
  743.         elif int(h1[2]) > int(h2[2]):
  744.             return 1
  745.         else:
  746.             return 0
  747.  
  748.     
  749.     def GetAllExtraHelpSourcesList(self):
  750.         '''
  751.         Returns a list of tuples containing the details of all additional help
  752.         sources configured, or an empty list if there are none. Tuples are of
  753.         the format returned by GetExtraHelpSourceList.
  754.         '''
  755.         allHelpSources = self.GetExtraHelpSourceList('default') + self.GetExtraHelpSourceList('user')
  756.         return allHelpSources
  757.  
  758.     
  759.     def LoadCfgFiles(self):
  760.         '''
  761.         load all configuration files.
  762.         '''
  763.         for key in self.defaultCfg.keys():
  764.             self.defaultCfg[key].Load()
  765.             self.userCfg[key].Load()
  766.         
  767.  
  768.     
  769.     def SaveUserCfgFiles(self):
  770.         '''
  771.         write all loaded user configuration files back to disk
  772.         '''
  773.         for key in self.userCfg.keys():
  774.             self.userCfg[key].Save()
  775.         
  776.  
  777.  
  778. idleConf = IdleConf()
  779. if __name__ == '__main__':
  780.     
  781.     def dumpCfg(cfg):
  782.         print '\n', cfg, '\n'
  783.         for key in cfg.keys():
  784.             sections = cfg[key].sections()
  785.             print key
  786.             print sections
  787.             for section in sections:
  788.                 options = cfg[key].options(section)
  789.                 print section
  790.                 print options
  791.                 for option in options:
  792.                     print option, '=', cfg[key].Get(section, option)
  793.                 
  794.             
  795.         
  796.  
  797.     dumpCfg(idleConf.defaultCfg)
  798.     dumpCfg(idleConf.userCfg)
  799.     print idleConf.userCfg['main'].Get('Theme', 'name')
  800.  
  801.